home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / tcclib.exe / SCRPTR.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-07-18  |  288 b   |  10 lines

  1. #define VIDMODE   *(unsigned char far *) 0x00449lu
  2. #define MONOSEG  0xb0000000L
  3. #define COLOR 0xb8000000L
  4. #define VIDSEG (unsigned char far *)((7 == VIDMODE) ? MONOSEG : COLOR )
  5.  
  6. unsigned char far *ScrPtr( int col, int row )
  7. {
  8.     return( VIDSEG + (--row * 160) + (--col << 1) );
  9. }
  10.